home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / lib / calc / help / statement < prev    next >
Text File  |  1995-07-17  |  10KB  |  268 lines

  1. Statements
  2.  
  3.     Statements are very much like C statements.  Most statements act
  4.     identically to those in C, but there are minor differences and
  5.     some additions.  The following is a list of the statement types,
  6.     with explanation of the non-C statements.  In this list, upper
  7.     case words identify the keywords which are actually in lower case.
  8.     Statements are generally terminated with semicolons, except if the
  9.     statement is the compound one formed by matching braces.  Various
  10.     expressions are optional and may be omitted (as in RETURN).
  11.  
  12.  
  13.     NOTE: Calc commands are in lower case.   UPPER case is used below
  14.           for emphasis only, and should be considered in lower case.
  15.  
  16.  
  17.     IF (expr) statement
  18.     IF (expr) statement ELSE statement
  19.     FOR (optionalexpr ; optionalexpr ; optionalexpr) statement
  20.     WHILE (expr) statement
  21.     DO statement WHILE (expr)
  22.     CONTINUE
  23.     BREAK
  24.     GOTO label
  25.         These all work like in normal C.
  26.  
  27.     RETURN optionalexpr
  28.         This returns a value from a function.  Functions always
  29.         have a return value, even if this statement is not used.
  30.         If no return statement is executed, or if no expression
  31.         is specified in the return statement, then the return
  32.         value from the function is the null type.
  33.  
  34.     SWITCH (expr) { caseclauses }
  35.         Switch statements work similarly to C, except for the
  36.         following.  A switch can be done on any type of value,
  37.         and the case statements can be of any type of values.
  38.         The case statements can also be expressions calculated
  39.         at runtime.  The calculator compares the switch value
  40.         with each case statement in the order specified, and
  41.         selects the first case which matches.  The default case
  42.         is the exception, and only matches once all other cases
  43.         have been tested.
  44.  
  45.     { statements }
  46.         This is a normal list of statements, each one ended by
  47.         a semicolon.  Unlike the C language, no declarations are
  48.         permitted within an inner-level compound statement.
  49.         Declarations are only permitted at the beginning of a
  50.         function definition, or at the beginning of an expression
  51.         sequence.
  52.  
  53.     MAT variable [dimension] [dimension] ...
  54.     MAT variable [dimension, dimension, ...]
  55.     MAT variable [] = { value, ... }
  56.         This creates a matrix variable with the specified dimensions.
  57.         Matrices can have from 1 to 4 dimensions.  When specifying
  58.         multiple dimensions, you can use either the standard C syntax,
  59.         or else you can use commas for separating the dimensions.
  60.         For example, the following two statements are equivalent,
  61.         and so will create the same two dimensional matrix:
  62.  
  63.             mat foo[3][6];
  64.             mat foo[3,6];
  65.  
  66.         By default, each dimension is indexed starting at zero,
  67.         as in normal C, and contains the specified number of
  68.         elements.  However, this can be changed if a colon is
  69.         used to separate two values.  If this is done, then the
  70.         two values become the lower and upper bounds for indexing.
  71.         This is convenient, for example, to create matrices whose
  72.         first row and column begin at 1.  Examples of matrix
  73.         definitions are:
  74.  
  75.             mat x[3]    one dimension, bounds are 0-2
  76.             mat foo[4][5]    two dimensions, bounds are 0-3 and 0-4
  77.             mat a[-7:7]    one dimension, bounds are (-7)-7
  78.             mat s[1:9,1:9]    two dimensions, bounds are 1-9 and 1-9
  79.  
  80.         Note that the MAT statement is not a declaration, but is
  81.         executed at runtime.  Within a function, the specified
  82.         variable must already be defined, and is just converted to
  83.         a matrix of the specified size, and all elements are set
  84.         to the value of zero.  For convenience, at the top level
  85.         command level, the MAT command automatically defines a
  86.         global variable of the specified name if necessary.
  87.  
  88.         Since the MAT statement is executed, the bounds on the
  89.         matrix can be full expressions, and so matrices can be
  90.         dynamically allocated.  For example:
  91.  
  92.             size = 20;
  93.             mat data[size*2];
  94.  
  95.         allocates a matrix which can be indexed from 0 to 39.
  96.  
  97.         Initial values for the elements of a matrix can be specified
  98.         by following the bounds information with an equals sign and
  99.         then a list of values enclosed in a pair of braces.  Even if
  100.         the matrix has more than one dimension, the elements must be
  101.         specified as a linear list.  If too few values are specified,
  102.         the remaining values are set to zero.  If too many values are
  103.         specified, a runtime error will result.  Examples of some
  104.         initializations are:
  105.  
  106.             mat table1[5] = {77, 44, 22};
  107.             mat table2[2,2] = {1, 2, 3, 4};
  108.  
  109.         When an initialization is done, the bounds of the matrix
  110.         can optionally be left out of the square brackets, and the
  111.         correct bounds (zero based) will be set.  This can only be
  112.         done for one-dimensional matrices.  An example of this is:
  113.  
  114.             mat fred[] = {99, 98, 97};
  115.  
  116.         The MAT statement can also be used in declarations to set
  117.         variables as being matrices from the beginning.  For example:
  118.  
  119.             local mat temp[5];
  120.             static mat strtable[] = {"hi", "there", "folks");
  121.  
  122.     OBJ type { elementnames } optionalvariables
  123.     OBJ type variable
  124.  
  125.         These create a new object type, or create one or more
  126.         variables of the specified type.  For this calculator,
  127.         an object is just a structure which is implicitly acted
  128.         on by user defined routines.  The user defined routines
  129.         implement common operations for the object, such as plus
  130.         and minus, multiply and divide, comparison and printing.
  131.         The calculator will automatically call these routines in
  132.         order to perform many operations.
  133.     
  134.         To create an object type, the data elements used in
  135.         implementing the object are specified within a pair
  136.         of braces, separated with commas.  For example, to
  137.         define an object will will represent points in 3-space,
  138.         whose elements are the three coordinate values, the
  139.         following could be used:
  140.     
  141.             obj point {x, y, z};
  142.     
  143.         This defines an object type called point, whose elements
  144.         have the names x, y, and z.  The elements are accessed
  145.         similarly to structure element accesses, by using a period.
  146.         For example, given a variable 'v' which is a point object,
  147.         the three coordinates of the point can be referenced by:
  148.  
  149.             v.x
  150.             v.y
  151.             v.z
  152.  
  153.         A particular object type can only be defined once, and
  154.         is global throughout all functions.  However, different
  155.         object types can be used at the same time.
  156.  
  157.         In order to create variables of an object type, they
  158.         can either be named after the right brace of the object
  159.         creation statement, or else can be defined later with
  160.         another obj statement.  To create two points using the
  161.         second (and most common) method, the following is used:
  162.  
  163.             obj point p1, p2;    
  164.  
  165.         This statement is executed, and is not a declaration.
  166.         Thus within a function, the variables p1 and p2 must have
  167.         been previously defined, and are just changed to be the
  168.         new object type.  For convenience, at the top level command
  169.         level, object variables are automatically defined as being
  170.         global when necessary.
  171.  
  172.         Initial values for an object can be specified by following
  173.         the variable name by an equals sign and a list of values
  174.         enclosed in a pair of braces.  For example:
  175.  
  176.             obj point pt = {5, 6};
  177.  
  178.         The OBJ statement can also be used in declarations to set
  179.         variables as being objects from the beginning.  If multiple
  180.         variables are specified, then each one is defined as the
  181.         specified object type.  Examples of declarations are:
  182.  
  183.             local obj point temp1;
  184.             static obj point temp2 = {4, 3};
  185.             global obj point p1, p2, p3;
  186.  
  187.     EXIT string
  188.     QUIT string
  189.  
  190.         This command is used in two cases.  At the top command
  191.         line level, quit will exit from the calculator.  This
  192.         is the normal way to leave the calculator.  In any other
  193.         use, quit will abort the current calculation as if an
  194.         error had occurred.  If a string is given, then the string
  195.         is printed as the reason for quitting, otherwise a general
  196.         quit message is printed.  The routine name and line number
  197.         which executed the quit is also printed in either case.
  198.  
  199.         Quit is useful when a routine detects invalid arguments,
  200.         in order to stop a calculation cleanly.  For example,
  201.         for a square root routine, an error can be given if the
  202.         supplied parameter was a negative number, as in:
  203.  
  204.             define mysqrt(n)
  205.             {
  206.                 if (n < 0)
  207.                     quit "Negative argument";
  208.                 ...
  209.             }
  210.  
  211.         Exit is an alias for quit.
  212.  
  213.  
  214.     PRINT exprs
  215.  
  216.         For interactive expression evaluation, the values of all
  217.         typed-in expressions are automatically displayed to the
  218.         user.  However, within a function or loop, the printing of
  219.         results must be done explicitly.  This can be done using
  220.         the 'printf' or 'fprintf' functions, as in standard C, or
  221.         else by using the built-in 'print' statement.  The advantage
  222.         of the print statement is that a format string is not needed.
  223.         Instead, the given values are simply printed with zero or one
  224.         spaces between each value.
  225.  
  226.         Print accepts a list of expressions, separated either by
  227.         commas or colons.  Each expression is evaluated in order
  228.         and printed, with no other output, except for the following
  229.         special cases.  The comma which separates expressions prints
  230.         a single space, and a newline is printed after the last
  231.         expression unless the statement ends with a colon.  As
  232.         examples:
  233.  
  234.             print 3, 4;        prints "3 4" and newline.
  235.             print 5:;        prints "5" with no newline.
  236.             print 'a' : 'b' , 'c';    prints "ab c" and newline.
  237.             print;            prints a newline.
  238.  
  239.         For numeric values, the format of the number depends on the
  240.         current "mode" configuration parameter.  The initial mode
  241.         is to print real numbers, but it can be changed to other
  242.         modes such as exponential, decimal fractions, or hex.
  243.  
  244.         If a matrix or list is printed, then the elements contained
  245.         within the matrix or list will also be printed, up to the
  246.         maximum number specified by the "maxprint" configuration
  247.         parameter.  If an element is also a matrix or a list, then
  248.         their values are not recursively printed.  Objects are printed
  249.         using their user-defined routine.  Printing a file value
  250.         prints the name of the file that was opened.
  251.  
  252.  
  253.     SHOW item
  254.  
  255.         This command displays some information.
  256.         The following is a list of the various items:
  257.  
  258.             builtins    built in functions
  259.             globals        global variables
  260.             functions    user-defined functions
  261.             objfuncs    possible object functions
  262.             memory        memory usage
  263.     
  264.  
  265.     Also see the help topic:
  266.  
  267.         command         top level commands
  268.